From b299ee48e235c296c98cb3fa9675f27729f4a85f Mon Sep 17 00:00:00 2001 From: zephex-alt <166333351+zephex-alt@users.noreply.github.com> Date: Sat, 4 May 2024 18:36:23 +0000 Subject: i guess I fixed it --- src/app/manga/[title]/[id]/[read]/page.jsx | 2 -- src/app/manga/[title]/[id]/page.jsx | 2 -- src/app/manga/[title]/page.jsx | 2 -- 3 files changed, 6 deletions(-) (limited to 'src/app/manga/[title]') diff --git a/src/app/manga/[title]/[id]/[read]/page.jsx b/src/app/manga/[title]/[id]/[read]/page.jsx index dc031fd..a2b2555 100644 --- a/src/app/manga/[title]/[id]/[read]/page.jsx +++ b/src/app/manga/[title]/[id]/[read]/page.jsx @@ -1,8 +1,6 @@ import styles from "./read.module.css"; import Image from "next/image"; -export const runtime = "edge"; - export default async function Read({ params }) { const chapterId = params.read; const results = await getPages(chapterId); diff --git a/src/app/manga/[title]/[id]/page.jsx b/src/app/manga/[title]/[id]/page.jsx index 9d60e0a..37fb3e5 100644 --- a/src/app/manga/[title]/[id]/page.jsx +++ b/src/app/manga/[title]/[id]/page.jsx @@ -5,8 +5,6 @@ import { redirect } from "next/navigation"; import { FaStar } from "react-icons/fa"; import { PreFetchChaterLinks } from "../../cacher"; -export const runtime = "edge"; - export default async function MangaInfo({ params }) { const id = params.id; const data = await getMangaInfo(id); diff --git a/src/app/manga/[title]/page.jsx b/src/app/manga/[title]/page.jsx index 2e3e4de..689042b 100644 --- a/src/app/manga/[title]/page.jsx +++ b/src/app/manga/[title]/page.jsx @@ -3,8 +3,6 @@ import Image from "next/image"; import Link from "next/link"; import { PreFetchMangaInfo } from "../cacher"; -export const runtime = "edge"; - export default async function MangaInfo({ params }) { const title = params.title; const data = await GetSearchedAnime(title); -- cgit v1.2.3